This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Lisa Kiresabergynds 26.Nov.03 04:13 PM a Web browser Domino Designer6.0.2Windows 2000
I try to display dummy document with one Text field and one RichText field using workspace.dialogbox.
Both fields are on the form.
But RTFIELD displayed as blank while TFIELD displayed OK.
Following is the code:
Begin:
Dim workspace As New NotesUIWorkspace
Dim session As New NotesSession
Dim db As NotesDatabase
Dim tempdoc As NotesDocument
Dim RTFIELD As NotesRichTextItem
Set db = session.CurrentDatabase
Set tempdoc = db.CreateDocument
tempdoc.form = "TESTForm"
Set RTFIELD = New NotesRichTextItem(tempdoc, "RTFIELD")